KoverHtmlTaskConfig

Configure Kover HTML Report.

Example:

...
html {
    title = "Custom title"

    // Generate an HTML report when running the `check` task
    onCheck = false

    // Specify HTML report directory
    htmlDir = layout.buildDirectory.dir("my-html-report")
}
 ...

Properties

Link copied to clipboard
abstract val charset: Property<String>

Specify charset in HTML reports.

Link copied to clipboard
abstract val htmlDir: DirectoryProperty

HTML report directory.

Link copied to clipboard
abstract val onCheck: Property<Boolean>

Generate an HTML report when running the check task.

Link copied to clipboard
abstract val title: Property<String>

Specify header in HTML reports.